home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Microsoft Plateform / Visual Basic 5.0 / Msvb50.ace / msvb50 / MSVB50 / VB / SAMPLES / VISDATA / EXPNAME.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-10-16  |  2.9 KB  |  102 lines

  1. VERSION 5.00
  2. Begin VB.Form frmExpName 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "Export"
  5.    ClientHeight    =   1335
  6.    ClientLeft      =   2775
  7.    ClientTop       =   2670
  8.    ClientWidth     =   4950
  9.    BeginProperty Font 
  10.       Name            =   "Tahoma"
  11.       Size            =   8.25
  12.       Charset         =   0
  13.       Weight          =   400
  14.       Underline       =   0   'False
  15.       Italic          =   0   'False
  16.       Strikethrough   =   0   'False
  17.    EndProperty
  18.    Height          =   1800
  19.    HelpContextID   =   2016127
  20.    Icon            =   "EXPNAME.frx":0000
  21.    Left            =   2715
  22.    LinkTopic       =   "Form1"
  23.    LockControls    =   -1  'True
  24.    MaxButton       =   0   'False
  25.    MinButton       =   0   'False
  26.    ScaleHeight     =   1335
  27.    ScaleWidth      =   4950
  28.    ShowInTaskbar   =   0   'False
  29.    StartUpPosition =   1  'CenterOwner
  30.    Top             =   2265
  31.    Width           =   5070
  32.    Begin VB.CommandButton cmdCancel 
  33.       Cancel          =   -1  'True
  34.       Caption         =   "&Cancel"
  35.       Height          =   375
  36.       Left            =   3480
  37.       MaskColor       =   &H00000000&
  38.       TabIndex        =   4
  39.       Top             =   600
  40.       Width           =   1335
  41.    End
  42.    Begin VB.CommandButton cmdOK 
  43.       Caption         =   "&OK"
  44.       Default         =   -1  'True
  45.       Height          =   375
  46.       Left            =   3480
  47.       MaskColor       =   &H00000000&
  48.       TabIndex        =   3
  49.       Top             =   120
  50.       Width           =   1335
  51.    End
  52.    Begin VB.TextBox txtTable 
  53.       Height          =   285
  54.       Left            =   160
  55.       TabIndex        =   1
  56.       Top             =   480
  57.       Width           =   2895
  58.    End
  59.    Begin VB.Label Label2 
  60.       AutoSize        =   -1  'True
  61.       Height          =   195
  62.       Left            =   165
  63.       TabIndex        =   2
  64.       Top             =   840
  65.       Width           =   45
  66.    End
  67.    Begin VB.Label Label1 
  68.       AutoSize        =   -1  'True
  69.       Height          =   195
  70.       Left            =   165
  71.       TabIndex        =   0
  72.       Top             =   120
  73.       Width           =   45
  74.    End
  75. Attribute VB_Name = "frmExpName"
  76. Attribute VB_Base = "0{529A4483-C9E1-11CF-9ED2-00AA00574745}"
  77. Attribute VB_GlobalNameSpace = False
  78. Attribute VB_Creatable = False
  79. Attribute VB_TemplateDerived = False
  80. Attribute VB_PredeclaredId = True
  81. Attribute VB_Exposed = False
  82. Attribute VB_Customizable = False
  83. Option Explicit
  84. '>>>>>>>>>>>>>>>>>>>>>>>>
  85. Const FORMCAPTION = "Export"
  86. Const BUTTON1 = "&OK"
  87. Const BUTTON2 = "&Cancel"
  88. '>>>>>>>>>>>>>>>>>>>>>>>>
  89. Private Sub cmdCancel_Click()
  90.   gExpTable = vbNullString
  91.   Unload Me
  92. End Sub
  93. Private Sub cmdOK_Click()
  94.   gExpTable = txtTable.Text
  95.   Unload Me
  96. End Sub
  97. Sub Form_Load()
  98.   Me.Caption = FORMCAPTION
  99.   cmdOK.Caption = BUTTON1
  100.   cmdCancel.Caption = BUTTON2
  101. End Sub
  102.